home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / doodle_d.swf / scripts / frame_10 / DoAction_4.as < prev    next >
Text File  |  2013-04-24  |  346b  |  19 lines

  1. function spawn()
  2. {
  3.    if(eNumb < 15)
  4.    {
  5.       eAmount++;
  6.       eNumb++;
  7.       depth = _root.getNextHighestDepth();
  8.       _root.attachMovie("en1","e" + eNumb,depth);
  9.       e = eval("e" + eNumb);
  10.       e._x = 320;
  11.       e._y = 640;
  12.       e.h = 5;
  13.       e.speed = 4;
  14.       e.che = eAmount;
  15.    }
  16. }
  17. var eNumb = 0;
  18. var eAmount = 0;
  19.